DataConnector | ComponentOne
C1.AdoNet.CSV Assembly / C1.DataConnector.AdoNet Namespace / C1RowUpdatedEventArgs<TCommandImpl> Class / C1RowUpdatedEventArgs<TCommandImpl> Constructor
The System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
The System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called.
The type of SQL statement executed.
The System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).

In This Topic
    C1RowUpdatedEventArgs<TCommandImpl> Constructor
    In This Topic
    Initializes a new instance of the C1RowUpdatedEventArgs<TCommandImpl> class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal row As DataRow, _
       ByVal command As IDbCommand, _
       ByVal statementType As StatementType, _
       ByVal tableMapping As DataTableMapping _
    )
    public C1RowUpdatedEventArgs<TCommandImpl>( 
       DataRow row,
       IDbCommand command,
       StatementType statementType,
       DataTableMapping tableMapping
    )

    Parameters

    row
    The System.Data.DataRow sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
    command
    The System.Data.IDbCommand executed when System.Data.Common.DbDataAdapter.Update(System.Data.DataSet) is called.
    statementType
    The type of SQL statement executed.
    tableMapping
    The System.Data.Common.DataTableMapping sent through an System.Data.Common.DbDataAdapter.Update(System.Data.DataSet).
    See Also